OnVisibilityChanged
Type
message
Summary
Sent when the widget visibility changed.
Syntax
OnVisibilityChanged <isVisible>
Description
Handle the OnVisibilityChanged message to execute code when the widget becomes visible or invisible.
Parameters
Name | Type | Description |
---|---|---|
isVisible | bool | Whether the widget is now visible or not. |
Examples
private variable mAnimate as Boolean
public handler OnVisibilityChanged(in pVisible as Boolean)
put pVisible into mAnimate
end handler